home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
mint
/
lib
/
mntlib44.zoo
/
mntlib
/
vprintf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-12
|
160 b
|
11 lines
#include <stdio.h>
#include <stdarg.h>
#include "lib.h"
int
vprintf(fmt, args)
const char *fmt;
va_list args;
{
return(_doprnt(fputc, stdout, fmt, args));
}